想要取得系統特殊資料夾目錄路徑,可以透過Environment.SpecialFolder
想要取得系統特殊資料夾目錄路徑,可以透過Environment.SpecialFolder,
http://msdn.microsoft.com/zh-tw/library/system.environment.specialfolder.aspx
例如我們要取得我的文件資料夾位置,可以
string MyDocumentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
MessageBox.Show(MyDocumentsPath);
取得System 目錄,可以
string SystemPath = Environment.GetFolderPath(Environment.SpecialFolder.System);
MessageBox.Show(SystemPath);